From: H Hartley Sweeten Date: Thu, 6 Sep 2012 01:44:44 +0000 (-0700) Subject: staging: comedi: ke_counter: remove subdevice pointer math X-Git-Tag: archive/raspbian/4.9.13-1+rpi1~10^2~10294^2~611 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=bce27067e50e799fdada532d440d087eec6a571c;p=linux-4.9.git staging: comedi: ke_counter: remove subdevice pointer math Convert the comedi_subdevice access from pointer math to array access. Signed-off-by: H Hartley Sweeten Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/comedi/drivers/ke_counter.c b/drivers/staging/comedi/drivers/ke_counter.c index a2d0bb43631c..e867b720f666 100644 --- a/drivers/staging/comedi/drivers/ke_counter.c +++ b/drivers/staging/comedi/drivers/ke_counter.c @@ -145,7 +145,7 @@ static int cnt_attach_pci(struct comedi_device *dev, if (ret) return ret; - s = dev->subdevices + 0; + s = &dev->subdevices[0]; dev->read_subdev = s; s->type = COMEDI_SUBD_COUNTER;